3.28 \(\int (a+b (F^{g (e+f x)})^n) \, dx\)

Optimal. Leaf size=30 \[ a x+\frac {b \left (F^{g (e+f x)}\right )^n}{f g n \log (F)} \]

[Out]

a*x+b*(F^(g*(f*x+e)))^n/f/g/n/ln(F)

________________________________________________________________________________________

Rubi [A]  time = 0.02, antiderivative size = 30, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 1, integrand size = 15, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.067, Rules used = {2194} \[ a x+\frac {b \left (F^{g (e+f x)}\right )^n}{f g n \log (F)} \]

Antiderivative was successfully verified.

[In]

Int[a + b*(F^(g*(e + f*x)))^n,x]

[Out]

a*x + (b*(F^(g*(e + f*x)))^n)/(f*g*n*Log[F])

Rule 2194

Int[((F_)^((c_.)*((a_.) + (b_.)*(x_))))^(n_.), x_Symbol] :> Simp[(F^(c*(a + b*x)))^n/(b*c*n*Log[F]), x] /; Fre
eQ[{F, a, b, c, n}, x]

Rubi steps

\begin {align*} \int \left (a+b \left (F^{g (e+f x)}\right )^n\right ) \, dx &=a x+b \int \left (F^{g (e+f x)}\right )^n \, dx\\ &=a x+\frac {b \left (F^{g (e+f x)}\right )^n}{f g n \log (F)}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.03, size = 30, normalized size = 1.00 \[ a x+\frac {b \left (F^{g (e+f x)}\right )^n}{f g n \log (F)} \]

Antiderivative was successfully verified.

[In]

Integrate[a + b*(F^(g*(e + f*x)))^n,x]

[Out]

a*x + (b*(F^(g*(e + f*x)))^n)/(f*g*n*Log[F])

________________________________________________________________________________________

fricas [A]  time = 0.47, size = 37, normalized size = 1.23 \[ \frac {a f g n x \log \relax (F) + F^{f g n x + e g n} b}{f g n \log \relax (F)} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*(F^(g*(f*x+e)))^n,x, algorithm="fricas")

[Out]

(a*f*g*n*x*log(F) + F^(f*g*n*x + e*g*n)*b)/(f*g*n*log(F))

________________________________________________________________________________________

giac [A]  time = 0.20, size = 32, normalized size = 1.07 \[ a x + \frac {F^{f g n x + g n e} b}{f g n \log \relax (F)} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*(F^(g*(f*x+e)))^n,x, algorithm="giac")

[Out]

a*x + F^(f*g*n*x + g*n*e)*b/(f*g*n*log(F))

________________________________________________________________________________________

maple [A]  time = 0.00, size = 31, normalized size = 1.03 \[ a x +\frac {b \left (F^{\left (f x +e \right ) g}\right )^{n}}{f g n \ln \relax (F )} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(b*(F^((f*x+e)*g))^n+a,x)

[Out]

a*x+b*(F^((f*x+e)*g))^n/f/g/n/ln(F)

________________________________________________________________________________________

maxima [A]  time = 0.93, size = 31, normalized size = 1.03 \[ a x + \frac {{\left (F^{f g x + e g}\right )}^{n} b}{f g n \log \relax (F)} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*(F^(g*(f*x+e)))^n,x, algorithm="maxima")

[Out]

a*x + (F^(f*g*x + e*g))^n*b/(f*g*n*log(F))

________________________________________________________________________________________

mupad [B]  time = 3.60, size = 31, normalized size = 1.03 \[ a\,x+\frac {b\,{\left (F^{e\,g+f\,g\,x}\right )}^n}{f\,g\,n\,\ln \relax (F)} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(a + b*(F^(g*(e + f*x)))^n,x)

[Out]

a*x + (b*(F^(e*g + f*g*x))^n)/(f*g*n*log(F))

________________________________________________________________________________________

sympy [A]  time = 0.12, size = 32, normalized size = 1.07 \[ a x + \begin {cases} \frac {b \left (F^{g \left (e + f x\right )}\right )^{n}}{f g n \log {\relax (F )}} & \text {for}\: f g n \log {\relax (F )} \neq 0 \\b x & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*(F**(g*(f*x+e)))**n,x)

[Out]

a*x + Piecewise((b*(F**(g*(e + f*x)))**n/(f*g*n*log(F)), Ne(f*g*n*log(F), 0)), (b*x, True))

________________________________________________________________________________________